07. Quiz: SUM

Aggregation Questions

Use the SQL environment below to find the solution for each of the following questions. If you get stuck or want to check your answers, you can find the answers at the top of the next concept.

  1. Find the total amount of poster_qty paper ordered in the orders table.

  2. Find the total amount of standard_qty paper ordered in the orders table.

  3. Find the total dollar amount of sales using the total_amt_usd in the orders table.

  4. Find the total amount spent on standard_amt_usd and gloss_amt_usd paper for each order in the orders table. This should give a dollar amount for each order in the table.

  5. Find the standard_amt_usd per unit of standard_qty paper. Your solution should use both an aggregation and a mathematical operator.

Code

If you need a code on the https://github.com/udacity.